home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1998 #4 / Amiga Plus CD - 1998 - No. 4.iso / pd / tools / ifx / install < prev    next >
Text File  |  1998-01-02  |  3KB  |  98 lines

  1. ; IFX V2.00
  2. ;
  3.  
  4. ;START
  5.  
  6. (welcome "About to install\nIFX v2.1\n(input effects)\n\n© Dobes Vandermeer\n")
  7. (set @app-name "IFX")
  8. (set @default-dest "SYS:")
  9. (if (askbool
  10.       (prompt "Okay to copy\nexecutable to dir\nSYS:WBStartup?")
  11.       (help "Press yes to copy,\nno to select another dir.")
  12.       (default 1)
  13.       )
  14.    (set #bindir "SYS:WBStartup")
  15.    (set #bindir 
  16.       (askdir
  17.          (prompt "Select directory for executable.\n")
  18.          (help "Since you didn't want\nto install to the\ndefault directory,\nPlease select another.\n" 
  19.                "(NIL: will send it all to hell)")
  20.          (default "SYS:Tools/Commodities")
  21.          )
  22.       )
  23.    )
  24.    
  25. (copyfiles 
  26.    (prompt "Copying executable to:\n" #bindir)
  27.    (help "Make sure all boxes are checked, \nand select proceed.")
  28.    (source "")
  29.    (choices "IFX" "IFX.info")
  30.    (dest #bindir)
  31.    )
  32.  
  33. (complete 25)
  34. (if (askbool
  35.       (prompt "Okay to copy\n\"effect\" command to dir\nC:?")
  36.       (help "This is a command that allows you\nto invoke effects from\na Shell")
  37.       (default 1)
  38.       )
  39.    (set #comdir "C:")
  40.    (set #comdir 
  41.       (askdir
  42.          (prompt "Select directory for executable.\n")
  43.          (help "Since you didn't want\nto install to the\ndefault directory,\nPlease select another.\n")
  44.          (default "C:")
  45.          )
  46.       )
  47.    )
  48.    
  49. (copyfiles 
  50.    (source "Effect")
  51.    (dest #comdir)
  52.    )
  53.  
  54. (complete 48)
  55. (if (askbool
  56.       (prompt "Okay to copy\n\"IFXNote\" command to dir\nSYS:Utilities?")
  57.       (help "This utility adds a comment to every\nsoundfile that is an\nIFX id, allowing you to\nquickly determine which sound files are in use.")
  58.       (default 1)
  59.       )
  60.    (set #comdir "SYS:Utilities")
  61.    (set #comdir
  62.       (askdir
  63.          (prompt "Select directory for executable.\n")
  64.          (help ("Since you didn't want\nto install to the\ndefault directory,\nPlease select"
  65.                "another.\n"))
  66.          (default "SYS:Utilities")
  67.          )
  68.       )
  69.    )
  70.  
  71. (copyfiles
  72.    (source "")
  73.    (pattern "(IFXNote|IFXNote.info)")
  74.    (dest #comdir)
  75.    )
  76.  
  77. (complete 66)
  78. (set #docdir
  79.    (askdir
  80.       (prompt "Where would you like me\nto install the documentation?")
  81.       (help "Find the directory where\nyou would like\ntosave the amigaguide\ndocumentation, and press\nProceed.\n")
  82.       (default "SYS:Docs")
  83.       )
  84.    )
  85.  
  86. (copyfiles
  87.    (source "")
  88.    (pattern "IFX.guide#?")
  89.    (dest #docdir)
  90.    )
  91.  
  92. (complete 100)
  93.  
  94. (exit "Installation of IFX complete.\n\nPlease reboot to test IFX.\n\nDocumentation can be found \nin " #docdir " and the \nexecutable is in " #bindir " and the prefs editor is in\n" #prefsdir 
  95. "\n\nlook out for sounds sets from the same place you got IFX!\n"
  96. (quiet))
  97.  
  98.